home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / phpcms_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  58 lines

  1. #
  2. # This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. # Ref: Cyrille Barthelemy <cb-publicbox ifrance com>
  4. #
  5. # This script is released under the GNU GPL v2
  6.  
  7. if(description)
  8. {
  9.   script_id(15850);
  10.   script_version("$Revision: 1.3 $");
  11.   script_bugtraq_id(11765);
  12.   
  13.   script_name(english:"phpCMS XSS");
  14.  
  15.  desc["english"] = "
  16. The remote host runs phpCMS, a content management system 
  17. written in PHP.
  18.  
  19. This version is vulnerable to cross-site scripting due to a lack of 
  20. sanitization of user-supplied data in parser.php script.
  21. Successful exploitation of this issue may allow an attacker to execute 
  22. malicious script code on a vulnerable server. 
  23.  
  24. Solution: Upgrade to version 1.2.1pl1 or newer
  25. Risk factor : Medium";
  26.  
  27.   script_description(english:desc["english"]);
  28.   script_summary(english:"Checks phpCMS XSS");
  29.   script_category(ACT_GATHER_INFO);
  30.   script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  31.   script_family(english:"CGI abuses : XSS");
  32.   script_require_ports("Services/www", 80);
  33.   script_dependencie("http_version.nasl", "cross_site_scripting.nasl");
  34.   exit(0);
  35. }
  36.  
  37. #the code
  38.  
  39. include("http_func.inc");
  40. include("http_keepalive.inc");
  41.  
  42. port = get_http_port(default:80);
  43. if ( ! get_port_state(port))exit(0);
  44. if ( ! can_host_php(port:port) ) exit(0);
  45.  
  46. if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);
  47.  
  48. buf = http_get(item:"/parser/parser.php?file=<script>foo</script>", port:port);
  49. r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
  50. if( r == NULL )exit(0);
  51.  
  52. if(egrep(pattern:"<script>foo</script>", string:r))
  53. {
  54.   security_warning(port);
  55.   exit(0);
  56. }
  57.